From 7c8f63d3d0b13b751a957180c8ad87de3f454a28 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Tue, 20 Jul 2010 17:37:09 +0100 Subject: [PATCH] Attached patch fixes linking error when creating the xl binary. The xl binary compiles in xl_cmdimpl.c which calls code from libxl_paths.c and libxl_bootloader.c. Signed-off-by: Christoph Egger --- tools/libxl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index f88a10a2c6..68b4fc9167 100644 --- a/tools/libxl/Makefile +++ b/tools/libxl/Makefile @@ -85,7 +85,7 @@ xl_cmdimpl.o: xl_cmdimpl.c xl_cmdtable.o: xl_cmdtable.c $(CC) $(CFLAGS) -c xl_cmdtable.c -$(CLIENTS): xl.o xl_cmdimpl.o xl_cmdtable.o libxlutil.so libxenlight.so +$(CLIENTS): xl.o xl_cmdimpl.o xl_cmdtable.o libxl_paths.o libxl_bootloader.o libxlutil.so libxenlight.so $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) .PHONY: install -- 2.30.2